home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 272_01 / vmode.doc < prev    next >
Text File  |  1986-09-23  |  620b  |  39 lines

  1.  
  2.  
  3.  
  4.  
  5.         NAME
  6.                 vmode -- set video mode
  7.  
  8.         SYNOPSIS
  9.                 void vmode(mode);
  10.                 int mode;
  11.  
  12.  
  13.         DESCRIPTION
  14.         This function sets the video mode from 0 - 7.  Modes are
  15.         as specified in the DOS manual.  The most common is
  16.         Black & White 80 column mode, which is mode 2.
  17.         This library package includes screen.h which defines
  18.         video modes.
  19.  
  20.  
  21.  
  22.         EXAMPLE
  23.              #include <screen.h>
  24.              vmode(BW80);
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.         This function is found in SMDLx.LIB for the Datalight Compiler
  39.